"hamcrest 0.1.0 (git+https://github.com/carllerche/hamcrest-rust.git#c23b8769f20f306c59a96b22532bb09b33faa764)",
"semver 0.0.1 (git+https://github.com/rust-lang/semver#e17191f51d543529a6f07e6731802b77977fcef8)",
"toml 0.1.0 (git+https://github.com/alexcrichton/toml-rs#934e093047ae15432fcc772d4e01fdf5fd56d2fb)",
- "url 0.1.0 (git+https://github.com/servo/rust-url#ad61773abc56d812f8abe4bc78833f422a5f6a94)",
+ "url 0.1.0 (git+https://github.com/servo/rust-url#143d902a9c35694e0b4835313db238c3833f0f52)",
]
[[package]]
[[package]]
name = "url"
version = "0.1.0"
-source = "git+https://github.com/servo/rust-url#ad61773abc56d812f8abe4bc78833f422a5f6a94"
+source = "git+https://github.com/servo/rust-url#143d902a9c35694e0b4835313db238c3833f0f52"
dependencies = [
"encoding 0.1.0 (git+https://github.com/lifthrasiir/rust-encoding#eae7c261f50cfbdc699e9b234d2b13d4d255fd42)",
]
pub fn run_tests(manifest_path: &Path,
options: &mut ops::CompileOptions,
args: &[String]) -> CargoResult<Option<ProcessError>> {
- let mut source = PathSource::for_path(&manifest_path.dir_path());
+ let mut source = try!(PathSource::for_path(&manifest_path.dir_path()));
try!(source.update());
let package = try!(source.get_root_package());
use std::io::File;
use support::{project, execs, cargo_dir, ResultTest};
-use support::paths::PathExt;
use hamcrest::assert_that;
fn setup() {}